-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution.cpp
43 lines (34 loc) · 880 Bytes
/
Solution.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#include <iostream>
#include <climits>
using namespace std;
struct Node {
int data;
Node* left;
Node* right;
Node(int value) {
data = value;
left = right = nullptr;
}
};
bool isBSTUtil(Node* root, int min, int max) {
if (root == nullptr)
return true;
if (root->data <= min || root->data >= max)
return false;
return isBSTUtil(root->left, min, root->data) && isBSTUtil(root->right, root->data, max);
}
bool isBST(Node* root) {
return isBSTUtil(root, INT_MIN, INT_MAX);
}
int main() {
Node* root = new Node(10);
root->left = new Node(5);
root->right = new Node(20);
root->left->left = new Node(3);
root->left->right = new Node(7);
if (isBST(root))
cout << "The tree is a valid BST." << endl;
else
cout << "The tree is not a valid BST." << endl;
return 0;
}